This eliminates some false positive warnings from scan-build, which was
not interpreting the #ifs and hence warning about unbalanced #endifs.
https://bugzilla.gnome.org/show_bug.cgi?id=712760
#include "gtkprintoperation.h" /* for GtkPrintError */
#include "gtkintl.h"
-#ifdef G_OS_UNIX /* _gtk_load_custom_papers() only on Unix so far */
+/* _gtk_load_custom_papers() only on Unix so far */
+#ifdef G_OS_UNIX
#include "gtkcustompaperunixdialog.h"
#endif
{
GList *list = NULL;
guint i;
-#ifdef G_OS_UNIX /* _gtk_load_custom_papers() only on Unix so far */
+/* _gtk_load_custom_papers() only on Unix so far */
+#ifdef G_OS_UNIX
if (include_custom)
{
GList *page_setups, *l;